home *** CD-ROM | disk | FTP | other *** search
/ Inter.Net 55-1 / Inter.Net 55-1.iso / CBuilder / Setup / BCB / data.z / splash.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-02-09  |  1.1 KB  |  31 lines

  1. //---------------------------------------------------------------------------
  2. // Borland C++Builder
  3. // Copyright (c) 1987, 1998 Borland International Inc.  All Rights Reserved.
  4. //---------------------------------------------------------------------------
  5. //---------------------------------------------------------------------------
  6. #ifndef splashH
  7. #define splashH
  8. //---------------------------------------------------------------------------
  9. #include <Classes.hpp>
  10. #include <Controls.hpp>
  11. #include <StdCtrls.hpp>
  12. #include <Forms.hpp>
  13. #include <ExtCtrls.hpp>
  14. //---------------------------------------------------------------------------
  15. class TSplashForm : public TForm
  16. {
  17. __published:    // IDE-managed Components
  18.     TPanel *Panel1;
  19.     TImage *Image1;
  20.     TLabel *Label3;
  21.     TBevel *Bevel1;
  22.     TLabel *Label1;
  23. private:    // User declarations
  24. public:        // User declarations
  25.     virtual __fastcall TSplashForm(TComponent* Owner);
  26. };
  27. //---------------------------------------------------------------------------
  28. extern TSplashForm *SplashForm;
  29. //---------------------------------------------------------------------------
  30. #endif
  31.